.animations-base, .zoomIn, .colorChange, .moveInTop, .moveInBottom, .moveInRight, .right__aside, .moveInLeft {
  animation-duration: 1.3s;
  animation-fill-mode: backwards;
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20rem);
  }
  80% {
    transform: translateX(2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.moveInLeft {
  animation-name: moveInLeft;
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(20rem);
  }
  83% {
    transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.moveInRight, .right__aside {
  animation-name: moveInRight;
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(20rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.moveInBottom {
  animation-name: moveInBottom;
}
@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(-20rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.moveInTop {
  animation-name: moveInTop;
}
@keyframes colorChange {
  0% {
    color: transparent;
  }
  100% {
    color: var(--color-primary);
  }
}
.colorChange {
  animation-name: colorChange;
}

/*
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    @extend .animations-base;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}


@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    @extend .animations-base;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

*/
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

.form {
  display: block;
  margin: 2rem 0;
  /* Input type Radio */
  /* Input type Radio ends*/
  /* Input type Checkbox */
  /* Input type Checkbox ends */
  /* Fieldset */
  /* Fieldset ends*/
  /* Select list(ul) */
  /* Select list(ul) ends*/
}
.form__group {
  position: relative;
  padding: 3rem 0;
}
.form__group:not(:last-child) {
  margin-bottom: 2rem;
}
.form__group-title {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form__input {
  display: block;
  width: 80%;
  padding: 1.3rem 4rem;
  background-color: #ededed;
  font-family: inherit;
  font-size: 1.3rem;
  color: inherit;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0.5rem;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .form__input {
    width: 80%;
  }
}
.form__input:focus {
  width: 95%;
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
  border-bottom: 2px solid #ff6d02;
}
.form__input:focus:invalid {
  border-bottom: 2px solid #878787;
}
.form__input::-webkit-input-placeholder {
  color: #666666;
}
.form__input:required ~ .form__input-label::after {
  position: absoute;
  top: 0;
  right: 0;
  content: " * ";
  color: #ff6d02;
}
.form__input-label {
  position: relative;
  display: block;
  margin-top: -6.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s;
}
.form__input:-moz-placeholder-shown + .form__input-label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8rem);
}
.form__input:placeholder-shown + .form__input-label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8rem);
}
.form__input-icon {
  position: absolute;
  top: 4rem;
  left: 0.5rem;
}
.form .input-number {
  width: 8rem !important;
  padding: 1.3rem 1rem;
  text-align: center;
}
.form .input-color {
  width: 4rem;
  height: 4rem;
  background-color: none;
  transition: all 0.4s;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}
.form__radio-group {
  position: relative;
  display: inline-block;
  margin: 1rem 4rem 1rem 0;
}
@media screen and (max-width: 800px) {
  .form__radio-group {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.form__radio-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 9;
}
.form__radio-label {
  position: relative;
  font-size: inherit;
  cursor: pointer;
  padding-left: 4.5rem;
}
.form__radio-button {
  position: absolute;
  display: inline-block;
  top: -0.65rem;
  left: 0;
  width: 3rem;
  height: 3rem;
  border: 4px solid #011f72;
  border-radius: 50%;
}
.form__radio-button::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50% -50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #011f72;
  opacity: 0;
  transition: opacity 0.4s;
}
.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}
.form__checkbox-group {
  position: relative;
  display: inline-block;
  margin: auto 4rem auto 0;
}
@media screen and (max-width: 800px) {
  .form__checkbox-group {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.form__checkbox-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 9;
}
.form__checkbox-label {
  position: relative;
  font-size: inherit;
  cursor: pointer;
  padding-left: 4.5rem;
}
.form__checkbox-button {
  position: absolute;
  display: inline-block;
  top: -0.65rem;
  left: 0;
  width: 3rem;
  height: 3rem;
  border: 4px solid #011f72;
  border-radius: 0.25rem;
}
.form__checkbox-button::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50% -50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  background-color: #011f72;
  opacity: 0;
  transition: opacity 0.4s;
}
.form__checkbox-input:checked ~ .form__checkbox-label .form__checkbox-button::after {
  opacity: 1;
}
.form__fieldset {
  position: relative;
  display: block;
  margin: 4rem auto;
  padding: 1rem;
  background-color: #c7e5ff;
  color: #011f72;
  border: 2px solid #011f72;
  border-radius: 0.5rem;
}
.form__fieldset-legend {
  display: block;
  padding: 0 0.5rem;
  font-size: 1.3rem;
}
.form__select-list {
  position: relative;
  width: 100%;
  height: 4rem;
  margin: 2rem 0;
  background-color: #011f72;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 4rem;
  border: 1px solid #011f72;
  border-radius: 0.5rem;
  cursor: pointer;
  z-index: 9;
}
.form__select-list .selected {
  width: 100%;
  padding: 0 2rem;
}
.form__select-list-checkbox {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  opacity: 0;
  z-index: 99;
}
.form__select-list-wrapper {
  display: none;
  background-color: rgba(255, 255, 255, 0.88);
  color: #011f72;
  list-style-type: none;
  z-index: 999;
  transition: all 0.4s;
}
.form__select-list-checkbox:checked ~ .form__select-list-wrapper {
  display: block;
  width: 100%;
  max-height: 30rem;
  padding: 1rem;
  margin-top: -3px;
  border: 2px solid #011f72;
  overflow-x: hidden;
}
.form__select-list-item {
  display: block;
}
.form__select-list-item:not(:last-child) {
  border-bottom: 2px solid var(--color-primary-dark);
}

.right__aside {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  width: 25vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 1rem 0 2rem rgba(0, 0, 0, 0.44);
  z-index: 999;
}
@media only screen and (max-width: 600px) {
  .right__aside {
    width: 92vw;
    min-height: 100vh;
    height: auto;
  }
}
@media only screen and (min-width: 601px) and (max-width: 800px) {
  .right__aside {
    width: 66vw;
    min-height: 100vh;
    height: auto;
  }
}
@media only screen and (min-width: 801px) and (max-width: 1199px) {
  .right__aside {
    width: 40vw;
    min-height: 100vh;
    height: auto;
  }
}
.right__aside-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.right__aside-title {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  height: 10vh;
  padding: 2vh 1rem;
  margin-bottom: 2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.right__aside-content {
  width: 100%;
  height: 80vh;
  padding: 1rem;
  overflow-y: auto;
}
.right__aside-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  margin-bottom: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
}
.right__aside-cta button {
  display: inline-block;
  margin: 0 auto !important;
}

.thumbnails {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.thumbnails .thumbnail {
  position: relative;
  margin: auto;
  padding: 0.5rem;
  z-index: 1;
}
.thumbnails .thumbnail .image-title {
  width: 100%;
}
.thumbnails .thumbnail .thumbnail-image {
  width: 100%;
}
.thumbnails .thumbnail .image-close {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  z-index: 9;
  cursor: pointer;
}

.om-banner {
  position: relative;
  background-image: url("/resources/banner_detail/TopBanner-Desktop-bg.webp");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: stretch;
  align-content: center;
}
@media screen and (max-width: 900px) {
  .om-banner {
    display: block;
    background-image: url(/resources/banner_detail/TopBanner-Mobile-bg.webp);
  }
}
@media screen and (min-width: 901px) and (max-width: 1200px) {
  .om-banner {
    background-image: url(/resources/banner_detail/TopBanner-iPad-bg.webp);
  }
}
.om-banner .om-banner-left {
  position: relative;
  display: inline-block;
  width: 60%;
  margin-right: 1%;
}
@media screen and (max-width: 900px) {
  .om-banner .om-banner-left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2%;
  }
}
.om-banner .om-banner-left .om-subtitle-font {
  font-size: 1.2rem !important;
}
.om-banner .om-banner-right {
  position: relative;
  display: inline-block;
  width: 38%;
  background-image: url("/resources/banner_detail/top-banner-model-smaller.webp");
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
  .om-banner .om-banner-right {
    width: 100%;
  }
}
.om-banner .banners {
  position: relative;
  width: 100%;
}
.om-banner .banners .banner-model {
  position: absolute;
  top: -2vh;
  right: 0;
  z-index: 9;
}
@media screen and (max-width: 600px) {
  .om-banner .banners .banner-model {
    position: relative;
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

.subscription {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  z-index: 999999;
}

.membership-subscription {
  position: relative;
  width: 100%;
  height: 100%;
}
.membership-subscription button {
  position: absolute;
  top: 1rem;
  right: 2vw;
}/*# sourceMappingURL=gokaddal.css.map */